Add multi-cache icons for Magellan.
authorrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Tue, 26 Nov 2002 17:47:50 +0000 (17:47 +0000)
committerrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Tue, 26 Nov 2002 17:47:50 +0000 (17:47 +0000)
gpsbabel/gpx.c
gpsbabel/magproto.c

index 7859258c8810e26c3ef70da037688848d7dcde57..fffdf0523f607445298b68d7fa854db174aada5c 100644 (file)
@@ -119,6 +119,7 @@ gs_type_mapping{
        const char *name;
 } gs_type_map[] = {
        { gt_traditional, "Traditional cache" },
+       { gt_multi, "Multi-Cache" },
        { gt_virtual, "Virtual cache" }
 };
 static
index bc8a8599187341e9cfc646bcedbd732d0d0c97ab..6d6aa60bff133d386864e950eab7d9520600b0b1 100644 (file)
@@ -141,8 +141,8 @@ static icon_mapping_t map330_icon_table[] = {
        { "an", "winery" },
        { "ao", "wreck" },
        { "ap", "zoo" },
-       { "ah", "Virtual cache"},
-       { "an", "Event"},
+       { "ah", "Virtual cache"},       /* Binos: becuase you "see" them. */
+       { "an", "Multi-Cache"},         /* Winery: grapes 'coz they "bunch" */
        { NULL, NULL } 
 };
 
@@ -986,6 +986,9 @@ mag_waypt_pr(const waypoint *waypointp)
                case gt_virtual:
                        icon_token = mag_find_token_from_descr("Virtual cache");
                        break;
+               case gt_multi:
+                       icon_token = mag_find_token_from_descr("Multi-Cache");
+                       break;
                default:
                        break;